home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v7n19.arc / FORMFD.FOR < prev    next >
Text File  |  1988-10-14  |  406b  |  17 lines

  1. C  This program demonstrates the use of ascii control
  2. C  characters for carriage control in fortran programs
  3. C  that write to sequential output files.
  4. C
  5.       PROGRAM FORMFD
  6.  
  7.       OPEN (UNIT = 9, FILE = 'DEMO.DAT', STATUS = 'NEW')
  8.  
  9.       WRITE (9,10)
  10. 00010 FORMAT ('This line prints on page 1')
  11.  
  12.       WRITE (9,20)
  13. 00020 FORMAT (' ','This line will print on page 2')
  14.  
  15.       STOP
  16.       END
  17.